home *** CD-ROM | disk | FTP | other *** search
/ .net 2000 August / NET74.ISO / pc / Software / JavaApplet / AnfyMacBeta1.sea / Anfy for Macintosh / anjavapp / wormhole / wormhole.txt < prev    next >
Encoding:
Text File  |  1999-07-05  |  4.5 KB  |  103 lines  |  [TEXT/ttxt]

  1.  
  2.           Anfy WormHole - Copyright (C) by Fabio Ciucci 1996-99
  3.  
  4.  
  5. This applet can generate and animate in realtime a wormhole effect, or a
  6. dot-tunnel as it is also known. This applet is fully parametrized, so you 
  7. can change many things to adapt the effect to your pages and purposes.
  8.  
  9. ****************************************************************************
  10.  
  11. NECESSARY FILES.
  12.  
  13. Apart from an optional overlay image, the following 3 ".class" files 
  14. must be uploaded: 
  15.  
  16. wormhole.class
  17. Lware.class
  18. anfy.class.
  19.  
  20. Plus, wormhole.jar for speedy loading on recent browsers.
  21.  
  22. ****************************************************************************
  23.  
  24. EXAMPLE.
  25.  
  26. Insert the <applet> tag in your html document as follows to add this applet
  27. to your page (Comments after the ";" symbol are code explanations and
  28. acceptable min/max values. They are not part of the applet language):
  29.  
  30.  
  31. <applet archive="wormhole.jar" code="wormhole.class" width="170" height="170">
  32. <param name="credits" value="Applet by Fabio Ciucci (www.anfyteam.com)">
  33. <param name="regcode" value="NO">          ; Registration code (if you have it)
  34. <param name="reglink" value="NO">          ; Optional URL link when the applet
  35.                                            is "clicked".
  36. <param name="regnewframe" value="YES">     ; Reglink opened in new frame?
  37. <param name="regframename" value="_blank"> ; Name of new frame for reglink
  38. <param name="statusmsg" value="Wormhole applet"> ; Statusbar message
  39. <param name="dotden" value="10">           ; Dot Density (1-23)
  40. <param name="backR" value="0">             ; RED comp. of backg. colour (0-255)
  41. <param name="backG" value="0">             ; GREEN comp. of backg. colour (0-255)
  42. <param name="backB" value="60">            ; BLUE comp. of backg. colour (0-255)
  43. <param name="xspeed" value="3">            ; X scrolling speed (0-20)
  44. <param name="yspeed" value="4">            ; Y scrolling speed (0-20)
  45. <param name="negative" value="YES">        ; Image=negative (YES or NO)
  46. <param name="overimg" value="NO">          ; Optional image over applet
  47. <param name="overimgX" value="0">          ; Over image X offset
  48. <param name="overimgY" value="0">          ; Over image Y offset
  49. <param name="memdelay" value="1000">       ; Memory deallocation delay
  50. <param name="priority" value="3">          ; Task priority (1..10)
  51. <param name="MinSYNC" value="10">          ; Min. milliseconds/frame for sync
  52. Sorry, your browser doesn't support Java.; Message for no java browsers.
  53. </applet>                                ; End of applet tag
  54.  
  55. ****************************************************************************
  56.  
  57. INSTRUCTIONS.
  58.  
  59. The following instructions describe how to change parameters:
  60.  
  61. Attempting to change the "credits" parameter will disable the applet.
  62.  
  63. To activate the reg parameters, please read the shareware registration notes.
  64. In the "regcode" parameter, place the registration code you purchased from 
  65. the author. If the code is correct and the applet is run from the registered 
  66. domain name, you can use "link" parameters to link to a URL when the applet 
  67. is mouse-clicked.
  68.  
  69. If you set "regnewframe" to "YES", you can set a specific frame location
  70. for the reglink:
  71.  
  72. "_blank"  : To load the link in a new blank unnamed browser window.
  73. "_self"   : To load the link into the same window the applet occupies.
  74. "_parent" : To load the link into the immediate FRAMESET parent.
  75. "_top"    : To load the link into the top body of the window.
  76.  
  77. You can also set a custom frame name, such as "myframe1".
  78.  
  79. With the "overimg" parameter you can specify the name of an image that will
  80. be painted over the applet. The best options are transparent GIF images.
  81. NOTE: Animated GIF images are supported, but will be animated only on 
  82. latest browsers (Netscape 4 and Explorer 4 or newer).
  83.  
  84. With "overimgX" and "overimgY" you can center the image over the applet area.
  85.  
  86. The size of the applet is determined by the width and height tags.
  87.  
  88. The "dotden" parameter determines the density of dots: A value of
  89. 1=full circles, then increasing the division of circles up to a value of 23.
  90.  
  91. You can change the background colour for the best results on your web page.
  92. The RGB values are the same as HTML tags, but in decimal values without the
  93. "#" symbol.
  94.  
  95. The "xspeed" and "yspeed" parameters control the speed of X and Y scrolling.
  96.  
  97. If you want the effect to appear in black with a lighter background, simply 
  98. set "negative" as "NO" and change back R/G/B to 255,255,255 or similar. With 
  99. a value of "YES", the effect is painted in white under your desired background 
  100. (this time it must be darker to have enough contrast).
  101.  
  102.  
  103.